CyclicBuffer.insertBack

Inserts the given item into the end of the buffer.

  1. void insertBack(U value)
    struct CyclicBuffer(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T)
    void
    insertBack
    (
    U
    )
    ()
    if (
    isImplicitlyConvertible!(U, T)
    )
  2. alias insert = insertBack
  3. alias insertAnywhere = insertBack
  4. alias put = insertBack

Meta